fromJson static method

MPLocationSettings? fromJson(
  1. dynamic json
)

Implementation

static MPLocationSettings? fromJson(json) => json != null && json != "null"
    ? MPLocationSettings._fromJson(json is String ? jsonDecode(json) : json)
    : null;