toJson method

Map<String, dynamic> toJson()

Serializes this configuration to a JSON-compatible map.

Implementation

Map<String, dynamic> toJson() => {
      'android': android.toJson(),
      'ios': ios.toJson(),
      'web': web.toJson(),
    };