DeleteParagraphBulletsRequest.fromJson constructor

DeleteParagraphBulletsRequest.fromJson(
  1. Map json_
)

Implementation

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