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,
      );