toMap method

Map<String, dynamic> toMap ()

Gets content of the current object as a Dictionary.

  • Returns: The Dictionary representing the content of the current object.

Implementation

Map<String, dynamic> toMap() {
  return Map.unmodifiable(_data);
}