fromMap static method

IcyInfoMessage fromMap(
  1. Map json
)

Implementation

static IcyInfoMessage fromMap(Map<dynamic, dynamic> json) => IcyInfoMessage(
    title: json['title'] as String?, url: json['url'] as String?);