BatchCreateNotesResponse.fromJson constructor

BatchCreateNotesResponse.fromJson(
  1. Map json_
)

Implementation

BatchCreateNotesResponse.fromJson(core.Map json_)
    : this(
        notes: json_.containsKey('notes')
            ? (json_['notes'] as core.List)
                .map((value) => Note.fromJson(
                    value as core.Map<core.String, core.dynamic>))
                .toList()
            : null,
      );