AccountProto_RetrievePushInfoReply constructor

AccountProto_RetrievePushInfoReply({
  1. Int64? id,
  2. String? pushToken,
  3. PushNotificationProto_PushType? pushType,
  4. String? locale,
})

Implementation

factory AccountProto_RetrievePushInfoReply({
  $fixnum.Int64? id,
  $core.String? pushToken,
  $3.PushNotificationProto_PushType? pushType,
  $core.String? locale,
}) {
  final result = create();
  if (id != null) result.id = id;
  if (pushToken != null) result.pushToken = pushToken;
  if (pushType != null) result.pushType = pushType;
  if (locale != null) result.locale = locale;
  return result;
}