PushToken.fromJson constructor

PushToken.fromJson(
  1. Map<String, dynamic> json
)

Implementation

PushToken.fromJson(Map<String, dynamic> json) {
  environment = json['environment'];
  bundleIdentifier = json['bundle_identifier'];
  clientIdentificationSequence = json['client_identification_sequence'];
}