AccountProto_RetrievePushInfoReply constructor
AccountProto_RetrievePushInfoReply({
- Int64? id,
- String? pushToken,
- PushNotificationProto_PushType? pushType,
- 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;
}