TextMapping.fromJson constructor

TextMapping.fromJson(
  1. Map json_
)

Implementation

TextMapping.fromJson(core.Map json_)
    : this(
        atomKey: json_.containsKey('atomKey')
            ? json_['atomKey'] as core.String
            : null,
        inputKey: json_.containsKey('inputKey')
            ? json_['inputKey'] as core.String
            : null,
        inputTrack: json_.containsKey('inputTrack')
            ? json_['inputTrack'] as core.int
            : null,
      );