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