toMinimalCompactJson method

Map<String, dynamic> toMinimalCompactJson()

Converts the Context instance to a minimal compact JSON map.

Returns a minimal compact JSON map representation of the Context instance.

Implementation

Map<String, dynamic> toMinimalCompactJson() {
  try {
    return toCompactJson();
  } catch (e) {
    rethrow;
  }
}