fromJson static method
Implementation
static ContentPartFileBase64 fromJson(Map<String, dynamic> json) =>
ContentPartFileBase64(
data: json['data'] as String,
mediaType: json['media_type'] as String,
filename: json['filename'] as String?,
providerOptions: json['provider_options'] as Map<String, dynamic>?,
);