CreateParagraphBulletsRequest.fromJson constructor

CreateParagraphBulletsRequest.fromJson(
  1. Map json_
)

Implementation

CreateParagraphBulletsRequest.fromJson(core.Map json_)
    : this(
        bulletPreset: json_.containsKey('bulletPreset')
            ? json_['bulletPreset'] as core.String
            : null,
        range: json_.containsKey('range')
            ? Range.fromJson(
                json_['range'] as core.Map<core.String, core.dynamic>)
            : null,
      );