UpdateNotificationSchemeDetails.fromJson constructor

UpdateNotificationSchemeDetails.fromJson(
  1. Map<String, Object?> json
)

Implementation

factory UpdateNotificationSchemeDetails.fromJson(Map<String, Object?> json) {
  return UpdateNotificationSchemeDetails(
    description: json[r'description'] as String?,
    name: json[r'name'] as String?,
  );
}