Note.fromJson constructor

Note.fromJson(
  1. Map json_
)

Implementation

Note.fromJson(core.Map json_)
    : this(
        createTime: json_['createTime'] as core.String?,
        creatorRole: json_['creatorRole'] as core.String?,
        note: json_['note'] as core.String?,
      );