$Attribution.fromJson constructor

$Attribution.fromJson(
  1. Map json_
)

Implementation

$Attribution.fromJson(core.Map json_)
    : this(
        numIntegralSteps: json_.containsKey('numIntegralSteps')
            ? json_['numIntegralSteps'] as core.int
            : null,
      );