SimpleProperties.fromJson constructor

SimpleProperties.fromJson(
  1. dynamic properties
)

Implementation

factory SimpleProperties.fromJson(dynamic properties) {
  return SimpleProperties(
      key: properties['key'],
      value: properties['value']);
}