EvaluateArguments.fromMap constructor

EvaluateArguments.fromMap(
  1. Map<String, Object?> obj
)

Implementation

EvaluateArguments.fromMap(Map<String, Object?> obj)
    : column = obj['column'] as int?,
      context = obj['context'] as String?,
      expression = obj['expression'] as String,
      format = obj['format'] == null
          ? null
          : ValueFormat.fromJson(obj['format'] as Map<String, Object?>),
      frameId = obj['frameId'] as int?,
      line = obj['line'] as int?,
      source = obj['source'] == null
          ? null
          : Source.fromJson(obj['source'] as Map<String, Object?>);