fromJSON static method

Properties fromJSON(
  1. Map<String, dynamic>? json
)

Creates a Properties from its RWPM JSON representation.

Implementation

static Properties fromJSON(Map<String, dynamic>? json) => Properties(
      otherProperties: json ?? {},
    );