InsightCTA.fromMap constructor
Implementation
factory InsightCTA.fromMap(
Map<String, dynamic> map,
) {
return InsightCTA(
label: map['label'].toString(),
service: map['service'].toString(),
method: map['method'].toString(),
params: map['params'],
);
}