ActionFileUploadBegin.fromJson constructor
Implementation
factory ActionFileUploadBegin.fromJson(Map<String, dynamic> json) => ActionFileUploadBegin(
actionId: (json['ActionId'] as String?) ?? '',
fileName: (json['FileName'] as String?) ?? '',
mime: (json['Mime'] as String?) ?? '',
byteCount: (json['ByteCount'] as num?)?.toInt() ?? 0,
checkHash: (json['CheckHash'] as bool?) ?? false,
hash: (json['Hash'] as String?) ?? '',
);