TabStop.fromJson constructor
TabStop.fromJson(
- 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,
);