CustomVariables.fromMap constructor

CustomVariables.fromMap(
  1. Map<String, dynamic> map
)

Implementation

factory CustomVariables.fromMap(Map<String, dynamic> map) {
  return CustomVariables(
    name: map['name'],
    value: map['value'],
  );
}