BatchCreateNotesRequest.fromJson constructor

BatchCreateNotesRequest.fromJson(
  1. Map json_
)

Implementation

BatchCreateNotesRequest.fromJson(core.Map json_)
    : this(
        notes: (json_['notes'] as core.Map<core.String, core.dynamic>?)?.map(
          (key, value) => core.MapEntry(
            key,
            Note.fromJson(value as core.Map<core.String, core.dynamic>),
          ),
        ),
      );