DocumentServiceWarning.fromJson constructor

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

Implementation

factory DocumentServiceWarning.fromJson(Map<String, dynamic> json) {
  return DocumentServiceWarning(
    message: json['message'] as String?,
  );
}