CustomSourceLocation.fromJson constructor

CustomSourceLocation.fromJson(
  1. Map _json
)

Implementation

CustomSourceLocation.fromJson(core.Map _json)
    : this(
        stateful: _json.containsKey('stateful')
            ? _json['stateful'] as core.bool
            : null,
      );