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,
        cellLocation: json_.containsKey('cellLocation')
            ? TableCellLocation.fromJson(
                json_['cellLocation'] as core.Map<core.String, core.dynamic>)
            : null,
        objectId: json_.containsKey('objectId')
            ? json_['objectId'] as core.String
            : null,
        textRange: json_.containsKey('textRange')
            ? Range.fromJson(
                json_['textRange'] as core.Map<core.String, core.dynamic>)
            : null,
      );