Skip to content

Commit 23be7cc

Browse files
author
WooSignal
committed
format dart code
1 parent f49fa5b commit 23be7cc

File tree

3 files changed

+7
-8
lines changed

3 files changed

+7
-8
lines changed

lib/models/meta_data.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,4 +33,4 @@ class MetaData {
3333
data['value'] = this.value.toString();
3434
return data;
3535
}
36-
}
36+
}

lib/models/payload/order_wc.dart

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -224,9 +224,8 @@ class Billing {
224224
String phone;
225225

226226
Billing(
227-
{
228-
this.company,
229-
this.firstName,
227+
{this.company,
228+
this.firstName,
230229
this.lastName,
231230
this.address1,
232231
this.address2,
@@ -284,9 +283,8 @@ class Shipping {
284283
String country;
285284

286285
Shipping(
287-
{
288-
this.company,
289-
this.firstName,
286+
{this.company,
287+
this.firstName,
290288
this.lastName,
291289
this.address1,
292290
this.address2,

lib/models/response/shipping_method.dart

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -117,7 +117,8 @@ class FreeShipping {
117117
String cost;
118118
String minimumOrderAmount;
119119

120-
FreeShipping({this.id, this.title, this.methodId, this.cost, this.minimumOrderAmount});
120+
FreeShipping(
121+
{this.id, this.title, this.methodId, this.cost, this.minimumOrderAmount});
121122

122123
FreeShipping.fromJson(Map<String, dynamic> json) {
123124
id = json['id'];

0 commit comments

Comments
 (0)