toJson method

Map<String, dynamic> toJson()

Implementation

Map<String, dynamic> toJson() {
  final featureName = this.featureName;
  final roleArn = this.roleArn;
  final status = this.status;
  return {
    if (featureName != null) 'FeatureName': featureName,
    if (roleArn != null) 'RoleArn': roleArn,
    if (status != null) 'Status': status,
  };
}