ActionFileUploadStartResponse2.fromJson constructor

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

Implementation

factory ActionFileUploadStartResponse2.fromJson(Map<String, dynamic> json) => ActionFileUploadStartResponse2(
    uploadId: (json['UploadId'] as String?) ?? '',
    accepted: (json['Accepted'] as bool?) ?? false,
);