EnvironmentVariable.fromJson constructor

EnvironmentVariable.fromJson(
  1. Map<String, dynamic> json
)

Implementation

factory EnvironmentVariable.fromJson(Map<String, dynamic> json) {
  return EnvironmentVariable(
    key: json['Key'] as String,
    value: json['Value'] as String,
    secure: json['Secure'] as bool?,
  );
}