NestingLevel.fromJson constructor

NestingLevel.fromJson(
  1. Map json_
)

Implementation

NestingLevel.fromJson(core.Map json_)
  : this(
      bulletStyle:
          json_.containsKey('bulletStyle')
              ? TextStyle.fromJson(
                json_['bulletStyle'] as core.Map<core.String, core.dynamic>,
              )
              : null,
    );