EdgeLocation.fromJson constructor

EdgeLocation.fromJson(
  1. Map json_
)

Implementation

EdgeLocation.fromJson(core.Map json_)
    : this(
        metropolitanArea: json_.containsKey('metropolitanArea')
            ? json_['metropolitanArea'] as core.String
            : null,
      );