TabStop.fromJson constructor

TabStop.fromJson(
  1. Map json_
)

Implementation

TabStop.fromJson(core.Map json_)
    : this(
        alignment: json_.containsKey('alignment')
            ? json_['alignment'] as core.String
            : null,
        offset: json_.containsKey('offset')
            ? Dimension.fromJson(
                json_['offset'] as core.Map<core.String, core.dynamic>)
            : null,
      );