ObbyEventRawLine.fromJson constructor

ObbyEventRawLine.fromJson(
  1. Map<String, dynamic> json
)

Implementation

factory ObbyEventRawLine.fromJson(Map<String, dynamic> json) => ObbyEventRawLine(
  message: RawMessage.fromJson(json['message'] as Map<String, dynamic>),
);