ExecutionProfile.fromMap constructor

ExecutionProfile.fromMap(
  1. Map<Object?, Object?> value
)

Implementation

factory ExecutionProfile.fromMap(Map<Object?, Object?> value) =>
    ExecutionProfile(
      tagExpression: _requiredString(value, 'tagExpression'),
      extensions: Map.unmodifiable({
        for (final entry in value.entries)
          if (entry.key is String && entry.key != 'tagExpression')
            entry.key as String: _freeze(entry.value),
      }),
    );