fromJson static method

NoticeOptionsModel fromJson(
  1. String source
)

Implementation

static NoticeOptionsModel fromJson(String source) {
  Map<String, dynamic> map = json.decode(source);
  return NoticeOptionsModel(
    storageForClient: map["storageForClient"],
    updateConvNotice: map["updateConvNotice"],
  );
}