ADMChannelResponse.fromJson constructor

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

Implementation

factory ADMChannelResponse.fromJson(Map<String, dynamic> json) {
  return ADMChannelResponse(
    platform: json['Platform'] as String,
    applicationId: json['ApplicationId'] as String?,
    creationDate: json['CreationDate'] as String?,
    enabled: json['Enabled'] as bool?,
    hasCredential: json['HasCredential'] as bool?,
    id: json['Id'] as String?,
    isArchived: json['IsArchived'] as bool?,
    lastModifiedBy: json['LastModifiedBy'] as String?,
    lastModifiedDate: json['LastModifiedDate'] as String?,
    version: json['Version'] as int?,
  );
}